home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 019a / zce12.zip / UNZIP.BAT < prev    next >
DOS Batch File  |  1991-12-09  |  343b  |  20 lines

  1. @echo off
  2. clr
  3. set ZDSELECT=
  4. zd a:*.zip /sel /fo
  5. if "%ZDSELECT%"=="" goto DONE
  6. if errorlevel 5 goto DONE
  7. if errorlevel 4 goto DONE
  8. if errorlevel 3 goto DONE
  9. if errorlevel 2 goto DONE
  10. if errorlevel 1 goto DONE
  11. echo creating %ZDSELECT% directory
  12. mkdir %ZDSELECT%
  13. cd %ZDSELECT%
  14. pkunzip a:%ZDSELECT%
  15. clr
  16. :DONE
  17. set ZDSELECT=
  18. dir
  19.  
  20.